home *** CD-ROM | disk | FTP | other *** search
/ Business Assistant / Business Assistant.iso / acctg / posinvnb / hard.bat next >
DOS Batch File  |  1991-03-13  |  668b  |  32 lines

  1. echo off
  2. cls
  3. ECHO TSL INSTALL FILE Copyright (C) 1991, THE SOFTWARE LABS, All Rights Reserved
  4. ECHO  
  5. if %1x == x goto error
  6. if %2x == x goto error
  7. if %1 == %2 goto error
  8. if %2 == a: goto error
  9. if %2 == A: goto error
  10. if %2 == B: goto error
  11. if %2 == b: goto error
  12. ECHO  
  13. ECHO Installing program on drive %2, one moment...
  14. %2
  15. cd\
  16. md poss
  17. cd \poss
  18. copy %1*.*
  19. ECHO  
  20. ECHO ...Installation complete.
  21. ECHO  
  22. ECHO OFF
  23. goto done
  24. :error
  25. echo ** ERROR: you MUST specify the SOURCE and TARGET drives! **
  26. echo If you are trying to install from drive A to C, type INSTALL A: C: [press
  27. echo ENTER] at the A prompt. 
  28. echo HARD DISK ONLY!
  29. :done
  30. pause
  31. cls
  32.